home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / internet / weblibev / dispatvc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-02  |  567 b   |  19 lines

  1.  
  2. ///////////////////////////////////////////////////////////////////////////////
  3. // Copyright 1995 by Potomac Software, Inc. Use of this material is subject to
  4. // the terms and conditions of the software license agreement.
  5.  
  6. #ifndef __DISPATVC_H__
  7. #define __DISPATVC_H__
  8.  
  9. ///////////////////////////////////////////////////////////////////////////////
  10. // Abstract base class for dispatching notifications via virtual event handlers.
  11.  
  12. class CWeblibDispatch
  13.   public:
  14.     virtual LRESULT Dispatch(UINT nMsg,WPARAM wParam,LPARAM lParam) = 0;
  15. };
  16.  
  17. #endif
  18.